home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
thinkref
/
archive
/
THINKPascalUH2.1.sea
/
THINKPas Univ Hdr 2.1
/
Interfaces
/
CRMSerialDevices.p
< prev
next >
Wrap
Text File
|
1995-09-12
|
2KB
|
76 lines
{ Converted with MPW2TPas Tuesday, September 12, 1995 5:44:42 PM }
{
File: CRMSerialDevices.p
Contains: Communications Resource Manager Serial Device interfaces.
Version: Technology: System 7.5
Package: Universal Interfaces 2.1 in “MPW Latest” on ETO #18
Copyright: © 1984-1995 by Apple Computer, Inc.
All rights reserved.
Bugs?: If you find a problem with this file, use the Apple Bug Reporter
stack. Include the file and version information (from above)
in the problem description and send to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
}
UNIT CRMSerialDevices;
INTERFACE
{$IFC UNDEFINED __CRMSERIALDEVICES__}
{$SETC __CRMSERIALDEVICES__ := 1}
USES
ConditionalMacros, Types;
{ $PUSH}
{ $ALIGN MAC68K}
{ $LibExport+}
CONST
{ for the crmDeviceType field of the CRMRec data structure }
crmSerialDevice = 1;
{ version of the CRMSerialRecord below }
curCRMSerRecVers = 1;
{ Maintains compatibility w/ apps & tools that expect an old style icon }
TYPE
CRMIconRecord = RECORD
oldIcon: ARRAY [0..31] OF LONGINT; { ICN# }
oldMask: ARRAY [0..31] OF LONGINT;
theSuite: Handle; { Handle to an IconSuite }
reserved: LONGINT;
END;
CRMIconPtr = ^CRMIconRecord;
CRMIconHandle = ^CRMIconPtr;
CRMSerialRecord = RECORD
version: INTEGER;
inputDriverName: StringHandle;
outputDriverName: StringHandle;
name: StringHandle;
deviceIcon: CRMIconHandle;
ratedSpeed: LONGINT;
maxSpeed: LONGINT;
reserved: LONGINT;
END;
CRMSerialPtr = ^CRMSerialRecord;
{ $ALIGN RESET}
{ $POP}
{$ENDC} {__CRMSERIALDEVICES__}
IMPLEMENTATION
END.